ia64: fix build
authorKeir Fraser <keir.fraser@citrix.com>
Tue, 15 Jun 2010 12:26:49 +0000 (13:26 +0100)
committerKeir Fraser <keir.fraser@citrix.com>
Tue, 15 Jun 2010 12:26:49 +0000 (13:26 +0100)
Signed-off-by: Jan Beulich <jbeulich@novell.com>
xen/arch/ia64/xen/machine_kexec.c
xen/include/asm-ia64/linux-xen/asm/processor.h
xen/include/asm-ia64/linux-xen/asm/smp.h
xen/include/asm-ia64/linux-xen/linux/cpu.h [deleted file]

index 9558735433eaf505cc572f028ac89c35ff7ff8fc..49b490847f78bc7948fd338f0368eea8e2e76763 100644 (file)
@@ -73,49 +73,6 @@ static void ia64_machine_kexec(struct unw_frame_info *info, void *arg)
        BUG();
 }
 
-#if CONFIG_SMP
-/* Need to implement some subset of hotplug-cpu - enough to
- * send a cpu into rendevouz */
-
-/* N.B: The tasks frozen parameter can probably be dropped
- *      This can probably be rolled into cpu_down
- */
-static int _cpu_down(unsigned int cpu, int tasks_frozen)
-{
-       if (num_online_cpus() == 1)
-               return -EBUSY;
-
-       if (!cpu_online(cpu))
-               return -EINVAL;
-
-#ifndef XEN
-       /* XXX: What, if anything, should Xen do here? */
-       /* Ensure that we are not runnable on dying cpu */
-       old_affinity = current->cpus_allowed;
-       tmp = CPU_MASK_ALL;
-       cpu_clear(cpu, tmp);
-       set_cpus_allowed(current, tmp);
-#endif
-
-       cpu_clear(cpu, cpu_online_map);
-
-       __cpu_die(cpu);
-
-       return 0;
-}
-
-static int cpu_down(unsigned int cpu)
-{
-       int err;
-
-       /* Unlike Linux there is no lock, as there are no other callers
-        * and no other CPUS. */
-       err = _cpu_down(cpu, 0);
-
-       return 0;
-}
-#endif /* SMP */
-
 /* This should probably be an arch-hook called from kexec_exec()
  * Its also likely that it should be in the xen equivalent of
  * arch/ia64/kernel/process.c */
index e54e612c71ef353a6497e65b13911192a8aad542..48fb4e0eeed521351e867dae2f763dd97a2deb11 100644 (file)
@@ -188,6 +188,7 @@ struct cpuinfo_ia64 {
 };
 
 DECLARE_PER_CPU(struct cpuinfo_ia64, cpu_info);
+DECLARE_PER_CPU(int, cpu_state);
 
 /*
  * The "local" data variable.  It refers to the per-CPU data of the currently executing
index 7cee1a3aa6a135bbe8d7ec46ec71d4e1dda942ff..9783d15097da0d12e92a98896f52eb3e38794530 100644 (file)
@@ -60,6 +60,8 @@ extern struct smp_boot_data {
 extern char no_int_routing __devinitdata;
 
 extern cpumask_t cpu_online_map;
+#define cpu_is_offline(cpu) unlikely(!cpu_online(cpu))
+
 DECLARE_PER_CPU(cpumask_t, cpu_core_map);
 DECLARE_PER_CPU(cpumask_t, cpu_sibling_map);
 extern int smp_num_siblings;
diff --git a/xen/include/asm-ia64/linux-xen/linux/cpu.h b/xen/include/asm-ia64/linux-xen/linux/cpu.h
deleted file mode 100644 (file)
index 2d0a8b7..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef _ASM_IA64_CPU_H_
-#define _ASM_IA64_CPU_H_
-
-#include <linux/device.h>
-#include <linux/cpu.h>
-#include <linux/topology.h>
-#include <linux/percpu.h>
-
-#ifndef XEN
-struct ia64_cpu {
-       struct cpu cpu;
-};
-
-DECLARE_PER_CPU(struct ia64_cpu, cpu_devices);
-#endif
-
-DECLARE_PER_CPU(int, cpu_state);
-
-#ifndef XEN
-extern int arch_register_cpu(int num);
-#ifdef CONFIG_HOTPLUG_CPU
-extern void arch_unregister_cpu(int);
-#endif
-#endif
-
-#endif /* _ASM_IA64_CPU_H_ */